Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
devebot-api
Advanced tools
The devebot application programming interface.
Installs this library and you'll have access to the devebot
service from your program.
npm install --save devebot-api
var DevebotApi = require('devebot-api');
var logger = require('winston');
var devebot = new DevebotApi({
host: '<your-address-default-127.0.0.1>',
port: '<your-port-default-17779>',
path: '<default-devebot>',
logger: logger // option
});
devebot.on('started', function() {
logger.info(' - The command is started');
});
devebot.on('success', function(data) {
logger.info(' - The command is commpleted successful, result: %s',
JSON.stringify(data, null, 2));
});
devebot.on('failure', function(data) {
logger.info(' - The command is failed, output: %s',
JSON.stringify(data, null, 2));
});
devebot.on('done', function() {
logger.info(' - The command is finished');
});
devebot.on('noop', function() {
logger.info(' - The command not found');
});
Uses devebot.loadDefinition(callback)
to get the commands defintion from devebot
service.
devebot.loadDefinition(function(err, definition) {
// do something with commands definition
});
Uses devebot.execCommand(cmd_definition, callback)
to execute a command that has been defined in devebot
service.
Example:
var cmd_def = {
name: '<name_of_command>',
options: {
option_1: '<value_1>',
option_2: '<value_2>'
}
};
var callback = function(err, result) {
// do something with err & result
};
devebot.execCommand(cmd_def, callback);
or inline form:
devebot.execCommand({
name: '<name_of_command>',
options: {
option_1: '<value_1>',
option_2: '<value_2>'
}
}, function(err, result) {
// do something with err & result
});
FAQs
Devebot API
The npm package devebot-api receives a total of 16 weekly downloads. As such, devebot-api popularity was classified as not popular.
We found that devebot-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.